home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / files / dsp / 56ktools / dspkgctr.z / dspkgctr / gcc / c-parse.h < prev    next >
Text File  |  1992-06-08  |  1KB  |  51 lines

  1. /* $Id: c-parse.h,v 1.2 91/07/15 15:38:02 pete Exp $ */
  2. /* Define constants for communication with parse.y.
  3.    Copyright (C) 1987 Free Software Foundation, Inc.
  4.  
  5. This file is part of GNU CC.
  6.  
  7. GNU CC is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 1, or (at your option)
  10. any later version.
  11.  
  12. GNU CC is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU CC; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21.  
  22.  
  23. enum rid
  24. {
  25.   RID_UNUSED,
  26.   RID_INT,
  27.   RID_CHAR,
  28.   RID_FLOAT,
  29.   RID_DOUBLE,
  30.   RID_VOID,
  31.   RID_UNUSED1,
  32.  
  33.   RID_UNSIGNED,
  34.   RID_SHORT,
  35.   RID_LONG,
  36.   RID_AUTO,
  37.   RID_STATIC,
  38.   RID_EXTERN,
  39.   RID_REGISTER,
  40.   RID_TYPEDEF,
  41.   RID_SIGNED,
  42.   RID_CONST,
  43.   RID_VOLATILE,
  44.   RID_INLINE,
  45.   RID_NOALIAS,
  46.  
  47.   RID_MAX
  48. };
  49.  
  50. #define RID_FIRST_MODIFIER RID_UNSIGNED
  51.